home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2 - Developers' Solutions / Delphi 2 Developers' Solutions.iso / dds / comps / widgets / delphi10 / ffltlbox / tstffllb.pas < prev   
Encoding:
Pascal/Delphi Source File  |  1996-06-18  |  521 b   |  32 lines

  1. unit Tstffllb;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, StdCtrls, Ffltlbox;
  8.  
  9. type
  10.   TForm1 = class(TForm)
  11.     FileFilterListBox1: TFileFilterListBox;
  12.     procedure FormCreate(Sender: TObject);
  13.   private
  14.     { Private declarations }
  15.   public
  16.     { Public declarations }
  17.   end;
  18.  
  19. var
  20.   Form1: TForm1;
  21.  
  22. implementation
  23.  
  24. {$R *.DFM}
  25.  
  26. procedure TForm1.FormCreate(Sender: TObject);
  27. begin
  28.   FileFilterListBox1.ShowFileList;
  29. end;
  30.  
  31. end.
  32.